1.2.8.9. alpha.nondeterminism.PointerSorting (C++)
Check for non-determinism caused by sorting of pointers.

Examples:

void test() {
 int a = 1, b = 2;
 std::vector<int *> V = {&a, &b};
 std::sort(V.begin(), V.end()); // warn
}